'Declaration Function FindBetween( _ ByVal min As Object, _ ByVal minInclusive As Boolean, _ ByVal max As Object, _ ByVal maxInclusive As Boolean, _ ByVal order As Order _ ) As IndexQuery(Of T)
IndexQuery<T> FindBetween( object min, bool minInclusive, object max, bool maxInclusive, Order order )
Parameters
- min
- Minimum key value to search for.
- minInclusive
- If true, the result includes items with the minimum key value.
- max
- Maximum key value to search for.
- maxInclusive
- If true, the result includes items with the maximum key value.
- order
- Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).
Return Value
An object enumerating all items with key values within the specified limits.